<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  body{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  #menu{
    transition: 0.6s;
  }
  .sidemenu{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 0px;
    background-color: green;
    z-index: 4;
    padding-top: 100px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .sidemenu a{
  margin-bottom: 10px;
  text-align: center;
  padding: 4px;
  font-size: 20px;
  color: white;
  display: block;
  }
  .sidemenu a:hover{
    transform: 0.2s;
    color: black;
  }
  .sidemenu .closebtn{
    color: white;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 30px;
  }
  #mainbox{
    width: 35px;
    margin-left: 30px;
    cursor: pointer;
    font-size: 30px;
    color: white;
    float: left;
  }
  
  header{
    height: 50px;
    background-color: green;
  }
  
  .a2{
    padding: 10px;
    top: 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    float: right;
    margin-right: 50px;
    color: white;
    margin-top: 5px;
  }
  .a2:hover{
    transform: 0.2s;
    background-color: rgb(77, 73, 73);
    border-radius: 5px;
  }
  .h1{
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 200px;
    float: right;
  }
  .a1{
    float: right;
    margin-right: 270px;
  }
  .a5:hover{
    transform: 0.2s;
    background-color: rgb(77, 73, 73);
    border-radius: 5px;
    margin-top:15px;
  }
  /* تنسيق عام للصفحة */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
    direction: rtl; /* لجعل النصوص بالعربية */
    overflow-x: hidden; /* لمنع التمرير الأفقي */
  }
  
  /* تأثير الخلفية الكبيرة */
  .background-image {
    width: 100%;
    height: 100vh; /* عرض كامل الشاشة */
    background-image: url('Shirobako-Movie-413x559.jpg'); /* الصورة الخلفية الكبيرة */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center; /* التمركز الأفقي */
    align-items: center; /* التمركز العمودي */
    animation: backgroundEffect 2s ease-in-out; /* إضافة تأثير عند الدخول */
  }
  
  
  /* تراكب الظل فوق الخلفية */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.4);
     /* لضمان أن الظل يبقى فوق الخلفية */
  }
  
  /* الحاوية للمحتوى داخل الخلفية */
  .content-container {
    position: relative;
    z-index: 0; /* ضمان أن المحتوى يظهر فوق الظل */
    text-align: center;
    color: white;
  }
  
  /* تنسيق المعلومات والصورة */
  .series-info {
    margin: 20px 0;
  }
  
  /* تنسيق الصورة مع تأثير التكبير */
  .series-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* تأثير عند التمرير فوق الصورة */
  .series-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* نص المعلومات */
  .info-text h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .info-text p {
    font-size: 16px;
    line-height: 1.6;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  /* تنسيق قائمة الحلقات بشكل مربعات */
  .episodes {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* تأكد من ظهور الحلقات فوق الخلفية */
  }
  
  .episodes h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* تنسيق الحلقات بشكل مربعات */
  .episode-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .episode-item {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: green;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* تأثير عند التمرير فوق الحلقات */
  .episode-item:hover {
    transform: translateY(-5px);
    background-color: rgb(26, 96, 26);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* تحسين التنسيق على الشاشات الصغيرة */
  @media (max-width: 768px) {
    .episode-list {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .episode-list {
      grid-template-columns: 1fr;
    }
  }
  .p{
    width: auto;
    
  }
  
  /**/
  /* تنسيق النافذة المنبثقة */
  .popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* خلفية مظللة */
  z-index: 1000;
  }
  
  .popup-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 60%;
  max-width: 600px;
  text-align: center;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 70%;
  }
  
  .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  }
  
  ul {
  list-style-type: none;
  padding: 0;
  }
  
  li {
  margin: 10px 0;
  }
  
  a.download-link {
  text-decoration: none;
  color: #4CAF50;
  font-size: 18px;
  }
  
  a.download-link:hover {
  color: #45a049;
  }
  #downloadBtn{
  width: 300px;
  float: none;
  margin-bottom: 20px;
  background-color: rgb(57, 55, 55);
  }
  #downloadBtn:hover{
  background-color: white;
  color: black;
  }
  footer{
  margin-top: 500px;
  height: 100px;
  background-color: green;
  }
  .a4{
  padding: 10px;
  top: 0;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  float: right;
  margin-right: 50px;
  color: white;
  margin-top:20px;
  
  }
  .a4:hover{
  transform: 0.2s;
  background-color: rgb(77, 73, 73);
  border-radius: 5px;
  }
  .a5:hover{
  transform: 0.2s;
  background-color: rgb(77, 73, 73);
  border-radius: 5px;
  margin-top:15px;
  }
  .a3{
  margin-right: 450px;
  }
  .h2{
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  width: 200px;
  float: right;
  margin-top: 20px;
  }
  .p3{
  background-color: gray;
  color: white;
  text-align: center;
  }
  .m1{
  font-size: 0px;
  }
  /* تنسيقات للأجهزة المحمولة */
  @media (max-width: 768px) {
  header {
    height: auto;
    padding: 10px;  
  }
  
  .a1, .a2, .a3, .a4, .a5 {
    float: none;
    display: block;
    text-align: center;
    margin: 10px 0;
  }
  
  .h1, .h2 {
    float: none;
    text-align: center;
    margin: 10px auto;
  }
  
  #mainbox {
    margin-left: 10px;
    font-size: 25px;
  }
  
  .sidemenu {
    padding-top: 60px;
  }
  
  .sidemenu .a2 {
    font-size: 18px;
  }
  
  .background-image {
    height: 50vh;
  }
  
  .content-container {
    padding: 20px;
    z-index: 0;
  }
  .series-image {
    max-width: 200px ;
    height: 100%;
  }
  
  .episodes {
    padding: 20px;
    z-index: 0;
  }
  
  .episode-list {
    grid-template-columns: 1fr;
  }
  
  .popup-content {
    width: 90%;
    margin: 20% auto;
  }
  
  #downloadBtn {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  
  footer {
    margin-top: 100px;
    height: auto;
    padding: 20px;
  }
  
  .a4, .a5 {
    margin-right: 0;
    margin-top: 10px;
  }
  
  .a3 {
    margin-right: 0;
  }
  .p {
    width: 100%;
    padding: 5px;
  }
  .background-image {
  height: auto;
  z-index: 0;
  }
  
  }
  
  @media (max-width: 480px) {
  .series-info h2 {
    font-size: 20px;
  }
  
  .series-info p {
    font-size: 14px;
  }
  .p{
    width: 100%;
    padding: 5px;
  }
  .episode-item {
    font-size: 16px;
  }
  .popup-content {
    width: 95%;
    margin: 10% auto;
  }
  .background-image {
    height: auto;
    z-index: 0;
  }
  }
  @media screen and (max-width: 255px){
  
  .series-image {
    max-width: 150px ;
    height: auto;
  }
  .p {
   font-size: 12px;
    padding: 5px;
  }
  
  .background-image {
  height: auto;
  z-index: 0;
  }
  h1{
  float: right;
  text-align: center;
  margin: 10px auto;
  font-size: 19px;
  width: 95px;
  float: right;
  padding-right: 5px;
  }
  }
  
  /**/
  @media (min-width:1014px) {
  header{
    background-color: green;
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 3;
    top: 0;
  }
  }
  @media (min-width: 768px){
  #downloadBtn {
    float: none;
    text-align: center;
    margin: 10px auto;
  }
  .p {
    width: 100%;
    padding: 5px;
  }
  .a2{
  font-size: 16px;
  }
  }
  
  @media (max-width: 1014px){
  header {
    height: auto;
    padding: 10px;  
  }
  
  .a1, .a2, .a3, .a4, .a5 {
    float: none;
    display: block;
    text-align: center;
    margin: 10px 0;
  }
  
  .h1, .h2 {
    float: none;
    text-align: center;
    margin: 10px auto;
  }
  footer {
    margin-top: 200px;
    height: auto;
    padding: 20px;
  }
  
  .a4, .a5 {
    margin-right: 0;
    margin-top: 10px;
  }
  
  .a3 {
    margin-right: 0;
  }
  .p {
    width: 100%;
    padding: 5px;
  }
  .content-container {
  z-index: 0;
  }
  .episodes {
  z-index: 3;
  }
  .background-image {
  height: auto;
  z-index: 0;
  }
  }</pre></body></html>